home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / SoundAndMusic / cmix / lib / boost.c < prev    next >
C/C++ Source or Header  |  1991-12-11  |  104b  |  8 lines

  1. #include <math.h>
  2.  
  3. float boost(plft)
  4. float plft;
  5. {
  6.     return(1./sqrt(plft*plft + (1.-plft)*(1.-plft)));
  7. }
  8.